:root{
  --accent-dark:#003b95;
  --accent:#2f68d1;
  --text:#0b1220;
  --muted:#64748b;
  --glass:rgba(255,255,255,.80);
  --shadow:0 18px 48px rgba(6,22,55,.12);
  --shadow-soft:0 10px 25px rgba(6,22,55,.08);
  --trans:380ms cubic-bezier(.18,.9,.2,1);
  --chip-1:#fff1f0;
  --chip-2:#e8f0ff;
  --chip-3:#eef8f2;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:"Poppins",system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#f7f9fd 0%, #eef3fb 100%);
  line-height:1.4;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{text-decoration:none}
button{font-family:inherit}

#site-header{
  position:fixed;
  inset:0 0 auto 0;
  z-index:1200;
  height:92px;
  display:flex;
  align-items:center;
  background:transparent;
  transition:background var(--trans), box-shadow var(--trans), height var(--trans);
}
#site-header.scrolled{
  background:var(--glass);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  box-shadow:0 12px 30px rgba(6,22,55,.08);
  height:78px;
}
.header-grid{
  width:min(1280px, calc(100% - 28px));
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(180px,240px) 1fr auto;
  gap:18px;
  align-items:center;
}
.site-logo{
  display:inline-flex;
  align-items:center;
  transform-origin:left center;
  transition:transform var(--trans), filter var(--trans);
}
.site-logo:hover{
  transform:translateY(-2px) scale(1.03);
  filter:drop-shadow(0 14px 28px rgba(0,70,168,.18));
}
.logo-img{
  width:100%;
  max-width:360px;
  height:auto;
  transition:transform var(--trans), max-width var(--trans);
}
.site-logo:hover .logo-img{transform:scale(1.02)}
#site-header.scrolled .logo-img{max-width:310px}

.header-center{position:relative}
.main-nav{display:flex;justify-content:center}
.nav-links{
  list-style:none;
  display:flex;
  align-items:center;
  gap:10px;
}
.nav-link,.services-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border:none;
  background:transparent;
  border-radius:999px;
  color:var(--muted);
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  position:relative;
  transition:color .25s ease, transform .25s ease, background .25s ease;
}
.nav-link::after,.services-btn::after{
  content:"";
  position:absolute;
  left:14px;
  right:14px;
  bottom:-8px;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--accent-dark),var(--accent));
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .25s ease, opacity .25s ease;
  opacity:.95;
}
.nav-link:hover,.services-btn:hover,.nav-link.active,.services-btn.active{
  color:var(--accent-dark);
  transform:translateY(-2px);
  background:rgba(47,104,209,.05);
}
.nav-link:hover::after,.services-btn:hover::after,.nav-link.active::after,.services-btn.active::after{
  transform:scaleX(1);
}
.chev{font-size:12px}

.mega-menu{
  position:absolute;
  left:50%;
  top:calc(100% + 18px);
  width:min(980px, calc(100vw - 40px));
  transform:translateX(-50%) translateY(10px);
  padding:20px;
  border-radius:22px;
  background:rgba(255,255,255,.98);
  box-shadow:var(--shadow);
  visibility:hidden;
  opacity:0;
  pointer-events:none;
  transition:opacity var(--trans), transform var(--trans);
  z-index:5;
}
.mega-menu.show{
  visibility:visible;
  opacity:1;
  pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}
.mega-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.mega-col{
  opacity:0;
  transform:translateY(10px);
  transition:opacity .35s ease, transform .35s ease;
}
.mega-menu.show .mega-col{opacity:1;transform:none}
.mega-col h4{font-size:15px;font-weight:700;display:flex;flex-wrap:wrap;gap:10px;align-items:center;margin-bottom:12px}
.chip{padding:6px 9px;border-radius:999px;font-size:12px;font-weight:700}
.chip-1{background:var(--chip-1);color:#c44a36}
.chip-2{background:var(--chip-2);color:#2b63b6}
.chip-3{background:var(--chip-3);color:#198754}
.mega-col ul{list-style:none}
.mega-col li+li{margin-top:8px}
.mega-col a{
  display:block;
  padding:10px 12px;
  border-radius:12px;
  color:var(--text);
  font-weight:500;
  transition:background .2s ease, transform .2s ease, color .2s ease;
}
.mega-col a:hover{background:rgba(47,104,209,.07);transform:translateX(6px);color:var(--accent-dark)}
.mega-footer{margin-top:14px;padding-top:14px;border-top:1px solid rgba(10,20,40,.06);font-size:13px;color:var(--muted)}
.mega-footer a{color:var(--accent-dark);font-weight:600}

.header-right{display:flex;align-items:center;gap:10px;justify-self:end}
.action-pill{
  display:flex;
  align-items:center;
  gap:6px;
  padding:7px 8px;
  border-radius:999px;
  background:linear-gradient(180deg,rgba(255,255,255,.92),rgba(255,255,255,.74));
  border:1px solid rgba(0,70,168,.07);
  box-shadow:var(--shadow-soft);
}
.action-item{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:34px;
  height:34px;
  padding:0 9px;
  border:none;
  border-radius:999px;
  color:#1d2a43;
  background:transparent;
  position:relative;
  transition:transform .2s ease, background .2s ease, color .2s ease;
}
.action-item:hover{transform:translateY(-2px);background:rgba(47,104,209,.08);color:var(--accent-dark)}
.action-item i{font-size:15px}
.action-item .label{
  position:absolute;
  left:50%;
  top:calc(100% + 8px);
  transform:translateX(-50%);
  background:#fff;
  border-radius:10px;
  padding:6px 8px;
  font-size:12px;
  white-space:nowrap;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease, top .2s ease;
}
.action-item:hover .label{opacity:1;top:calc(100% + 12px)}
.btn-atendente{
  min-width:210px;
  justify-content:center;
  padding:0 18px;
  color:#fff;
  font-weight:700;
  background:linear-gradient(135deg,#2f68d1,#0046a8);
  box-shadow:0 12px 28px rgba(47,104,209,.24);
  overflow:hidden;
}
.btn-atendente:hover{background:linear-gradient(135deg,#3f78e2,#0b4fb6);color:#fff}
.btn-atendente::before{
  content:"";
  position:absolute;
  top:0;
  left:-40%;
  width:34%;
  height:100%;
  transform:skewX(-20deg);
  background:linear-gradient(90deg,rgba(255,255,255,0),rgba(255,255,255,.28),rgba(255,255,255,0));
  animation:shine 3s linear infinite;
}
@keyframes shine{
  0%{left:-40%}
  60%,100%{left:115%}
}

.burger{
  display:none;
  width:46px;
  height:46px;
  border:none;
  border-radius:14px;
  background:rgba(255,255,255,.92);
  box-shadow:var(--shadow-soft);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}
.burger span{
  display:block;
  width:20px;
  height:2px;
  background:var(--accent-dark);
  border-radius:999px;
  transition:transform .25s ease, opacity .25s ease;
}
.burger.active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.burger.active span:nth-child(2){opacity:0}
.burger.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.overlay{
  position:fixed;
  inset:0;
  background:rgba(2,6,23,.5);
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease;
  z-index:1250;
}
.overlay.show{opacity:1;pointer-events:auto}

.mobile-drawer{
  position:fixed;
  top:0;
  right:-100%;
  width:min(390px, 100%);
  height:100dvh;
  background:linear-gradient(180deg,#ffffff 0%, #f7faff 100%);
  box-shadow:-24px 0 60px rgba(2,6,23,.18);
  z-index:1260;
  transition:right .3s ease;
  overflow-y:auto;
  padding:0 16px 28px;
}
.mobile-drawer.open{right:0}
.mobile-drawer-top{
  position:sticky;
  top:0;
  z-index:5;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 0 14px;
  background:linear-gradient(180deg,#ffffff 0%, #f7faff 100%);
}
.mobile-drawer-title{
  font-size:18px;
  font-weight:700;
  color:var(--accent-dark);
  letter-spacing:.2px;
}
.close-drawer{
  flex:0 0 48px;
  width:48px;
  height:48px;
  border:none;
  border-radius:14px;
  background:#eef4ff;
  color:var(--accent-dark);
  font-size:22px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:var(--shadow-soft);
  -webkit-tap-highlight-color:transparent;
  touch-action:manipulation;
}
.close-drawer i{
  pointer-events:none;
}
.close-drawer:hover{
  transform:scale(1.03);
}
.close-drawer:active{
  transform:scale(.97);
}

.mobile-nav{
  padding-top:8px;
}
.mobile-menu-list{list-style:none;display:flex;flex-direction:column;gap:10px}
.mobile-menu-list>li>a,
.acc-toggle{
  width:100%;
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 14px;
  border:none;
  border-radius:16px;
  background:#fff;
  color:#132033;
  box-shadow:0 10px 24px rgba(6,22,55,.05);
  font-weight:600;
  font-size:15px;
}
.mobile-menu-list>li>a{
  justify-content:flex-start;
}
.mobile-menu-list>li>a span,
.acc-title{
  display:flex;
  align-items:center;
  gap:12px;
}
.mobile-menu-list>li>a i,
.acc-title i{
  width:18px;
  text-align:center;
  color:var(--accent-dark);
}
.acc-toggle{
  justify-content:space-between;
  cursor:pointer;
}
.acc-ind{color:var(--accent-dark);transition:transform .25s ease}
.mobile-accordion.open .acc-ind{transform:rotate(90deg)}
.acc-panel{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;
  padding:0 4px;
}
.mobile-group{
  background:#f7faff;
  margin-top:10px;
  border-radius:16px;
  padding:14px;
  border:1px solid rgba(47,104,209,.08);
}
.mobile-group strong{display:block;margin-bottom:10px;color:var(--accent-dark);font-size:14px}
.mobile-group ul{list-style:none;display:flex;flex-direction:column;gap:8px}
.mobile-group a{display:block;color:#203049;padding:8px 0;font-size:14px}
.mobile-cta-card,.mobile-social-card{
  margin-top:18px;
  background:#fff;
  border-radius:18px;
  padding:16px;
  box-shadow:0 10px 24px rgba(6,22,55,.05);
}
.mobile-cta-card p{font-size:14px;color:#445166;margin-bottom:14px}
.mobile-cta-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.mobile-login,.mobile-atendente{
  height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  font-weight:700;
  font-size:14px;
}
.mobile-login{background:#eef4ff;color:var(--accent-dark)}
.mobile-atendente{border:none;background:linear-gradient(135deg,#2f68d1,#0046a8);color:#fff}
.mobile-social-card span{display:block;margin-bottom:12px;color:#445166;font-size:14px;font-weight:600}
.mobile-socials{display:flex;gap:10px}
.mobile-socials a{
  width:44px;
  height:44px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#eef4ff;
  color:var(--accent-dark);
  font-size:18px;
}

.main-placeholder{padding-top:120px}
.hero-demo{min-height:110vh;display:flex;align-items:flex-start;justify-content:center;padding:40px 18px 60px}
.hero-demo-content{
  width:min(1200px,100%);
  min-height:70vh;
  border-radius:28px;
  background:linear-gradient(180deg,#ffffff,#f5f8fe);
  box-shadow:0 24px 60px rgba(6,22,55,.09);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:30px;
}
.hero-demo-image{max-width:min(920px,100%);height:auto}

a:focus-visible,button:focus-visible{outline:3px solid rgba(47,104,209,.18);outline-offset:3px}

@media (max-width:1180px){
  .header-grid{grid-template-columns:minmax(170px,240px) 1fr auto}
  .logo-img{max-width:300px}
  .nav-links{gap:4px}
  .nav-link,.services-btn{padding:10px 11px;font-size:14px}
  .btn-atendente{min-width:190px}
}
@media (max-width:980px){
  #site-header{height:auto;padding:10px 0 12px}
  #site-header.scrolled{height:auto}
  .header-grid{
    grid-template-columns:1fr;
    gap:10px;
    width:min(100%, calc(100% - 18px));
  }
  .header-left{display:flex;justify-content:center}
  .header-center{display:none}
  .header-right{width:100%;justify-content:center;gap:8px}
  .logo-img{max-width:230px}
  .action-pill{
    flex:1;
    justify-content:space-between;
    max-width:560px;
    min-width:0;
    padding:6px 8px;
    gap:4px;
  }
  .action-item{min-width:32px;height:32px;padding:0 7px}
  .action-item .label{display:none}
  .btn-atendente{
    min-width:auto;
    height:44px;
    padding:0 18px;
    font-size:13px;
    flex:1;
  }
  .burger{display:flex;flex:0 0 46px}
  .main-placeholder{padding-top:150px}
  .nav-link::after,.services-btn::after{
    display:none !important;
  }
  body.menu-open .header-right{
    visibility:hidden;
    pointer-events:none;
  }
}
@media (max-width:640px){
  .logo-img{max-width:205px}
  .action-pill{max-width:none}
  .btn-atendente{padding:0 14px}
  .burger{width:44px;height:44px;flex:0 0 44px}
  .main-placeholder{padding-top:145px}
  .hero-demo{padding:24px 12px 50px}
  .hero-demo-content{padding:18px;border-radius:22px}
}
@media (max-width:420px){
  .action-pill{padding:6px}
  .action-item{min-width:30px;height:30px}
  .btn-atendente{font-size:12px;padding:0 12px}
}


/* BOTÃO WHATSAPP FIXO NA TELA */
/* ==========================
   WHATSAPP PREMIUM GRANSAFETY
   CSS COMPLETO
========================== */

.gran-wa {
  position: fixed;
  right: 34px;
  bottom: 34px;
  z-index: 999999;
  font-family: "Segoe UI", Arial, sans-serif;
  touch-action: none;
  user-select: none;
}

/* CARD */

.gran-wa-card {
  position: absolute;
  bottom: 96px;
  width: 370px;
  max-width: calc(100vw - 32px);
  background: #0b141a;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(22px) scale(0.94);
  transition: 0.35s cubic-bezier(.2,.8,.2,1);
}

/* quando estiver na direita, abre para esquerda */
.gran-wa.right .gran-wa-card {
  right: 0;
  left: auto;
}

/* quando estiver na esquerda, abre para direita */
.gran-wa.left .gran-wa-card {
  left: 0;
  right: auto;
}

.gran-wa.open .gran-wa-card {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* HEADER */

.gran-wa-header {
  height: 84px;
  background: linear-gradient(135deg, #1fa34f, #1fa34f, #1fa34f);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  color: #fff;
  position: relative;
}

.gran-wa-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 92% 0%, rgba(255,255,255,.28), transparent 36%);
  pointer-events: none;
}

.gran-wa-avatar {
  width: 56px;
  height: 56px;
  position: relative;
  z-index: 2;
  flex: none;
}

.gran-wa-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,.9);
}

.gran-wa-online {
  position: absolute;
  right: 1px;
  bottom: 3px;
  width: 14px;
  height: 14px;
  background: #25d366;
  border-radius: 50%;
  border: 2px solid #fff;
  animation: granOnlineDot 1.5s infinite;
}

.gran-wa-user {
  position: relative;
  z-index: 2;
}

.gran-wa-user h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.gran-wa-user p {
  margin: 4px 0 0;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 7px;
  opacity: .95;
}

.gran-wa-user p span {
  width: 8px;
  height: 8px;
  background: #baffcf;
  border-radius: 50%;
  animation: granOnlinePulse 1.4s infinite;
}

.gran-wa-close {
  margin-left: auto;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,.18);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  position: relative;
  z-index: 3;
  transition: .25s ease;
}

.gran-wa-close:hover {
  background: rgba(0,0,0,.28);
  transform: rotate(90deg);
}

/* CHAT */

.gran-wa-chat {
  min-height: 265px;
  padding: 18px;
  background:
    linear-gradient(rgba(11,20,26,.94), rgba(11,20,26,.96)),
    radial-gradient(circle at top right, rgba(37,211,102,.18), transparent 35%),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,.035) 0px,
      rgba(255,255,255,.035) 1px,
      transparent 1px,
      transparent 10px
    );
}

.gran-wa-day {
  width: max-content;
  margin: 0 auto 18px;
  padding: 5px 13px;
  border-radius: 999px;
  background: #202c33;
  color: #cfd8dc;
  font-size: 11px;
}

/* MENSAGENS */

.gran-wa-message {
  width: max-content;
  max-width: 86%;
  background: #ffffff;
  color: #111;
  border-radius: 0 16px 16px 16px;
  padding: 10px 12px 7px 14px;
  margin-bottom: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,.18);
  animation: granMsgShow .35s ease forwards;
  position: relative;
}

.gran-wa-message::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 0;
  border-top: 10px solid #fff;
  border-left: 10px solid transparent;
}

.gran-wa-message p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.gran-wa-message-time {
  margin-top: 4px;
  text-align: right;
  font-size: 10.5px;
  color: #667781;
}

.gran-wa-message-time i {
  color: #53bdeb;
  margin-left: 3px;
  font-size: 10px;
}

/* DIGITANDO */

.gran-wa-typing {
  width: max-content;
  background: #fff;
  padding: 12px 14px;
  border-radius: 0 16px 16px 16px;
  display: none;
  gap: 4px;
  align-items: center;
  box-shadow: 0 8px 25px rgba(0,0,0,.18);
  position: relative;
}

.gran-wa-typing::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 0;
  border-top: 10px solid #fff;
  border-left: 10px solid transparent;
}

.gran-wa-typing.active {
  display: flex;
}

.gran-wa-typing span {
  width: 8px;
  height: 8px;
  background: #8f9aa3;
  border-radius: 50%;
  animation: granTyping 1s infinite;
}

.gran-wa-typing span:nth-child(2) {
  animation-delay: .18s;
}

.gran-wa-typing span:nth-child(3) {
  animation-delay: .36s;
}

/* FOOTER */

.gran-wa-footer {
  padding: 18px;
  background: #111b21;
}

.gran-wa-cta {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, #25d366, #00b04f);
  box-shadow: 0 15px 35px #25d365b6;
  transition: .25s ease;
}

.gran-wa-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(37,211,102,.42);
}

/* BOTÃO FLUTUANTE */

.gran-wa-float {
  width: 74px;
  height: 74px;
  border: none;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.45), transparent 23%),
    linear-gradient(135deg, #25d366, #00b04f);
  color: #fff;
  font-size: 34px;
  cursor: grab;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 18px 45px #25d366,
    0 0 0 10px rgba(37,211,102,.10);
  overflow: visible;
  animation: granFloat 3s ease-in-out infinite, granShake 6s infinite;
}

.gran-wa-float:active {
  cursor: grabbing;
}

.gran-wa-pulse {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.35);
  animation: granPulseRing 2s infinite;
}

.gran-wa-notification {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 28px;
  height: 28px;
  background: #ff3b30;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  border: 2px solid #fff;
  animation: granNotification 1s infinite;
  transition: .25s ease;
}

.gran-wa-float.read .gran-wa-notification {
  opacity: 0;
  transform: scale(0);
}

/* ANIMAÇÕES */

@keyframes granPulseRing {
  0% {
    transform: scale(.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

@keyframes granNotification {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.18);
  }
}

@keyframes granTyping {
  0%, 100% {
    transform: translateY(0);
    opacity: .4;
  }
  50% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

@keyframes granMsgShow {
  from {
    opacity: 0;
    transform: translateY(10px) scale(.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes granOnlinePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(186,255,207,.85);
  }
  100% {
    box-shadow: 0 0 0 8px rgba(186,255,207,0);
  }
}

@keyframes granOnlineDot {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37,211,102,.8);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 7px rgba(37,211,102,0);
  }
}

@keyframes granFloat {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -6px;
  }
}

@keyframes granShake {
  0%, 82%, 100% {
    rotate: 0deg;
  }
  85% {
    rotate: 7deg;
  }
  88% {
    rotate: -7deg;
  }
  91% {
    rotate: 5deg;
  }
  94% {
    rotate: 0deg;
  }
}

/* MOBILE */

@media (max-width: 480px) {
  .gran-wa {
    right: 24px;
    bottom: 28px;
  }

  .gran-wa-card {
    width: calc(100vw - 28px);
    bottom: 88px;
  }

  .gran-wa-float {
    width: 66px;
    height: 66px;
    font-size: 30px;
  }
}


/* SESSÃO FORMULARIO */
:root {
  --gs-bg: #dfe8f5;
  --gs-wave: #f5f8fd;
  --gs-title: #0d4ea6;
  --gs-title-soft: #4d6f98;
  --gs-input-bg: #ffffff;
  --gs-input-border: #d7e2f0;
  --gs-input-focus: #3f8cff;
  --gs-icon-bg: #eef5ff;
  --gs-icon-color: #0d5bd3;
  --gs-text: #51657f;
  --gs-dark: #243547;
  --gs-blue: #0d5bd3;
  --gs-blue-dark: #0847a6;
  --gs-blue-light: #54a8ff;
  --gs-success: #18c77c;
  --gs-error: #ff4f6d;
}

* {
  box-sizing: border-box;
}

.gs-contact-section {
  position: relative;
  background: linear-gradient(180deg, #dfe8f5 0%, #d9e4f2 100%);
  padding: 0 20px 80px;
  overflow: hidden;
}

.gs-wave-top {
  width: 100%;
  height: 110px;
  overflow: hidden;
  line-height: 0;
}

.gs-wave-top svg {
  display: block;
  width: 100%;
  height: 110px;
}

.gs-wave-top path {
  fill: var(--gs-wave);
}

.gs-contact-container {
  max-width: 1120px;
  margin: 0 auto;
}

.gs-contact-header {
  text-align: center;
  margin-bottom: 30px;
}

.gs-contact-header h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gs-title);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: gsTitleFloat 3s ease-in-out infinite;
}

.gs-contact-header p {
  margin: 10px 0 0;
  color: var(--gs-title-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.gs-contact-form {
  max-width: 1120px;
  margin: 0 auto;
  animation: gsFadeUp 0.8s ease;
}

.gs-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 28px;
}

.gs-field {
  position: relative;
}

.gs-field-full {
  grid-column: 1 / -1;
}

.gs-field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--gs-icon-bg);
  color: var(--gs-icon-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: 0.28s ease;
  box-shadow: 0 4px 10px rgba(13, 91, 211, 0.08);
}

.gs-field-icon-textarea {
  top: 19px;
  transform: none;
}

.gs-field input,
.gs-field select,
.gs-field textarea {
  width: 100%;
  background: var(--gs-input-bg);
  border: 1px solid var(--gs-input-border);
  border-radius: 14px;
  padding: 15px 14px 15px 64px;
  font-size: 0.98rem;
  color: var(--gs-dark);
  outline: none;
  transition: 0.28s ease;
  box-shadow: 0 4px 14px rgba(12, 59, 126, 0.04);
}

.gs-field input::placeholder,
.gs-field textarea::placeholder,
.gs-field select {
  color: var(--gs-text);
}

.gs-field textarea {
  min-height: 150px;
  resize: vertical;
  padding-top: 16px;
}

.gs-field select {
  appearance: none;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, #6c88aa 50%),
    linear-gradient(135deg, #6c88aa 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 2px),
    calc(100% - 14px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.gs-field input:hover,
.gs-field select:hover,
.gs-field textarea:hover {
  border-color: #bfd2ea;
}

.gs-field input:focus,
.gs-field select:focus,
.gs-field textarea:focus {
  border-color: var(--gs-input-focus);
  box-shadow: 0 0 0 5px rgba(63, 140, 255, 0.12);
  transform: translateY(-1px);
}

.gs-field input:focus + .dummy,
.gs-field select:focus + .dummy,
.gs-field textarea:focus + .dummy {
  opacity: 1;
}

.gs-field:focus-within .gs-field-icon {
  background: linear-gradient(135deg, #0d5bd3, #55a9ff);
  color: #fff;
  box-shadow: 0 8px 18px rgba(13, 91, 211, 0.18);
}

.gs-field input.gs-error,
.gs-field select.gs-error,
.gs-field textarea.gs-error {
  border-color: var(--gs-error);
  box-shadow: 0 0 0 4px rgba(255, 79, 109, 0.10);
}

.gs-form-footer {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.gs-check-area {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.gs-check-area input {
  display: none;
}

.gs-check-custom {
  width: 20px;
  min-width: 20px;
  height: 20px;
  border: 1px solid #97adc9;
  background: transparent;
  border-radius: 4px;
  position: relative;
  transition: 0.25s ease;
}

.gs-check-custom::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  color: #fff;
  opacity: 0;
  transform: scale(0.5);
  transition: 0.25s ease;
}

.gs-check-area input:checked + .gs-check-custom {
  background: var(--gs-blue);
  border-color: var(--gs-blue);
  box-shadow: 0 6px 14px rgba(13, 91, 211, 0.18);
}

.gs-check-area input:checked + .gs-check-custom::after {
  opacity: 1;
  transform: scale(1);
}

.gs-check-text {
  color: #2f4358;
  font-size: 0.95rem;
  font-weight: 600;
}

.gs-check-text a {
  color: var(--gs-blue);
  text-decoration: none;
  font-weight: 800;
}

.gs-check-text a:hover {
  text-decoration: underline;
}

.gs-submit-btn {
  position: relative;
  background: linear-gradient(135deg, #0591ee 0%, #2885f3 55%, #58b0ff 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 15px 24px;
  min-width: 210px;
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 10px 22px rgba(13, 91, 211, 0.20);
  animation: gsButtonPulse 2.2s infinite;
}

.gs-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(13, 91, 211, 0.25);
}

.gs-submit-btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.gs-btn-shine {
  position: absolute;
  top: 0;
  left: -80%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.34), transparent);
  transform: skewX(-24deg);
  animation: gsShine 2.8s linear infinite;
}

.gs-btn-text,
.gs-submit-btn i {
  position: relative;
  z-index: 2;
}

.gs-toast-wrapper {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 99999;
  width: min(420px, calc(100% - 24px));
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gs-toast {
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 17px 16px;
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  transform: translateX(120%);
  opacity: 0;
  animation: gsToastIn 0.4s ease forwards;
}

.gs-toast.hide {
  animation: gsToastOut 0.35s ease forwards;
}

.gs-toast::before {
  content: "";
  position: absolute;
  inset: 0;
}

.gs-toast.error::before {
  background: linear-gradient(135deg, #cb3657, #ff5c7a);
}

.gs-toast.success::before {
  background: linear-gradient(135deg, #0b9a61, #1ac980);
}

.gs-toast-icon,
.gs-toast-content,
.gs-toast-close {
  position: relative;
  z-index: 2;
}

.gs-toast-icon {
  width: 46px;
  min-width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.12);
}

.gs-toast-icon i {
  font-size: 1.1rem;
  animation: gsIconPop 1.2s ease-in-out infinite;
}

.gs-toast-title {
  font-size: 0.98rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.gs-toast-message {
  font-size: 0.93rem;
  line-height: 1.55;
}

.gs-toast-message strong {
  background: rgba(255,255,255,0.12);
  padding: 2px 7px;
  border-radius: 7px;
}

.gs-toast-message a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
}

.gs-toast-close {
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.95);
  cursor: pointer;
  font-size: 1rem;
}

.gs-shake-screen {
  animation: gsShakeScreen 0.42s ease;
}

.gs-contact-form.gs-shake-card {
  animation: gsShakeCard 0.42s ease;
}

@keyframes gsFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gsTitleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes gsButtonPulse {
  0%, 100% {
    box-shadow: 0 10px 22px rgba(13, 91, 211, 0.20), 0 0 0 0 rgba(13, 91, 211, 0.15);
  }
  50% {
    box-shadow: 0 12px 24px rgba(13, 91, 211, 0.24), 0 0 0 10px rgba(13, 91, 211, 0);
  }
}

@keyframes gsShine {
  0% { left: -80%; }
  100% { left: 140%; }
}

@keyframes gsToastIn {
  from {
    opacity: 0;
    transform: translateX(120%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes gsToastOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes gsIconPop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes gsShakeScreen {
  0% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
  100% { transform: translateX(0); }
}

@keyframes gsShakeCard {
  0% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(5px); }
  100% { transform: translateX(0); }
}

@media (max-width: 991px) {
  .gs-form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .gs-contact-section {
    padding: 0 14px 65px;
  }

  .gs-wave-top,
  .gs-wave-top svg {
    height: 82px;
  }

  .gs-contact-header {
    margin-bottom: 24px;
  }

  .gs-form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gs-submit-btn {
    min-width: 100%;
  }

  .gs-check-text {
    font-size: 0.9rem;
  }

  .gs-toast-wrapper {
    top: 14px;
    right: 12px;
    width: calc(100% - 24px);
  }
}





/* PAGINA QUEM SOMOS */
/* ================================
   GRANSAFETY - QUEM SOMOS FINAL
================================ */

.granx-about {
  position: relative;
  overflow: hidden;
  padding: 0 0 120px;
  font-family: "Poppins", Arial, sans-serif;
  color: #151820;
  background: linear-gradient(180deg, #f8fbff 0%, #edf4ff 48%, #ffffff 100%);
}

.granx-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* FUNDO COM GRADE */
.granx-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.granx-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, .10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, .10) 1px, transparent 1px);
  background-size: 70px 70px;
}

.granx-light {
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .34;
  animation: granxLight 9s ease-in-out infinite;
}

.granx-light-1 {
  top: -130px;
  left: -120px;
  background: #2563eb;
}

.granx-light-2 {
  right: -130px;
  bottom: -130px;
  background: #38bdf8;
  animation-delay: 2s;
}

/* ================================
   BANNER ÚNICO CORRIGIDO
================================ */

.granx-hero-banner {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 760px;
  overflow: hidden;
  background: #07111f;
}

.granx-hero-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: granxBannerZoom 18s ease-in-out infinite alternate;
}

.granx-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 12, 28, .94), rgba(5, 12, 28, .58), rgba(5, 12, 28, .18)),
    linear-gradient(to top, rgba(5, 12, 28, .84), transparent 58%);
}

.granx-hero-content {
  position: relative;
  z-index: 3;
  width: min(1280px, calc(100% - 40px));
  min-height: 760px;
  margin: 0 auto;
  padding: 140px 0 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  animation: granxFadeUp 1s ease forwards;
}

.granx-pill,
.granx-section-head span {
  display: inline-flex;
  width: fit-content;
  padding: 10px 22px;
  border-radius: 999px;
  background: #dbeafe;
  color: #2563eb;
  font-size: 14px;
  font-weight: 900;
}

.granx-pill {
  color: #fff;
  background: rgba(37, 99, 235, .86);
  margin-bottom: 22px;
  box-shadow: 0 14px 35px rgba(37, 99, 235, .28);
  animation: granxSoftPulse 2.8s ease-in-out infinite;
}

.granx-hero-content h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(40px, 6vw, 84px);
  line-height: .95;
  letter-spacing: -3px;
}

.granx-hero-content h1 strong {
  display: block;
  color: #38bdf8;
}

.granx-hero-content p {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: 18px;
  line-height: 1.75;
}

/* BOTÕES */

.granx-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.granx-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: .35s ease;
}

.granx-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.36), transparent);
  transition: .6s ease;
}

.granx-btn:hover::before {
  transform: translateX(120%);
}

.granx-btn-main {
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  box-shadow: 0 18px 45px rgba(37,99,235,.30);
}

.granx-btn-line {
  color: #2563eb;
  background: #fff;
  border: 1px solid rgba(37,99,235,.22);
}

.granx-btn:hover {
  transform: translateY(-5px);
}

/* ================================
   TÍTULOS PADRÃO
================================ */

.granx-section-head {
  max-width: 920px;
  margin: 0 auto 55px;
  text-align: center;
}

.granx-section-head.left {
  margin: 0 0 30px;
  text-align: left;
}

.granx-section-head h2 {
  margin: 18px 0 14px;
  color: #151820;
  font-size: clamp(38px, 5vw, 66px);
  line-height: .98;
  letter-spacing: -2.5px;
}

.granx-section-head h2 strong {
  color: #2563eb;
}

.granx-section-head p {
  color: #475569;
  font-size: 18px;
  line-height: 1.7;
}

.granx-section-head.white span {
  color: #fff;
  background: rgba(255,255,255,.15);
}

.granx-section-head.white h2,
.granx-section-head.white h2 strong {
  color: #fff;
}

.granx-section-head.white p {
  color: rgba(255,255,255,.80);
}

/* ================================
   NOSSA EMPRESA LIVRE
================================ */

.granx-company-free {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: center;
  margin: 130px 0 120px;
}

.granx-company-image-wrap {
  position: relative;
  min-height: 560px;
}

.granx-company-image {
  position: absolute;
  inset: 40px 40px 40px 0;
  width: calc(100% - 40px);
  height: calc(100% - 80px);
  object-fit: cover;
  border-radius: 44px;
  box-shadow: 0 36px 110px rgba(15,23,42,.18);
  animation: granxImageFloat 6s ease-in-out infinite;
}

.granx-company-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0 0 0 65px;
  border-radius: 46px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  opacity: .14;
  transform: rotate(4deg);
  animation: granxShapeFloat 7s ease-in-out infinite;
}

.granx-floating-tag {
  position: absolute;
  z-index: 4;
  min-width: 185px;
  padding: 17px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(37,99,235,.16);
  box-shadow: 0 24px 70px rgba(15,23,42,.14);
  backdrop-filter: blur(14px);
  animation: granxTagFloat 5s ease-in-out infinite;
}

.granx-floating-tag strong {
  display: block;
  color: #2563eb;
  font-size: 32px;
  line-height: 1;
}

.granx-floating-tag span {
  display: block;
  margin-top: 6px;
  color: #334155;
  font-weight: 800;
  font-size: 13px;
}

.tag-one {
  left: -8px;
  top: 36px;
}

.tag-two {
  right: 5px;
  top: 235px;
  animation-delay: 1.3s;
}

.tag-three {
  left: 48px;
  bottom: 30px;
  animation-delay: 2s;
}

.granx-company-copy {
  position: relative;
}

.granx-company-copy::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: 20px;
  top: -40px;
  border-radius: 50%;
  background: rgba(37,99,235,.08);
  filter: blur(2px);
}

.granx-company-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.granx-company-points div {
  position: relative;
  overflow: hidden;
  min-height: 215px;
  padding: 28px 22px;
  border-radius: 30px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(37,99,235,.14);
  box-shadow: 0 22px 70px rgba(15,23,42,.08);
  backdrop-filter: blur(14px);
  transition: .35s ease;
}

.granx-company-points div::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: #dbeafe;
  transition: .35s ease;
}

.granx-company-points i {
  position: relative;
  z-index: 2;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  font-size: 24px;
}

.granx-company-points h3 {
  position: relative;
  z-index: 2;
  margin: 22px 0 10px;
  font-size: 21px;
}

.granx-company-points p {
  position: relative;
  z-index: 2;
  color: #52627e;
  line-height: 1.65;
}

.granx-company-points div:hover {
  transform: translateY(-12px);
}

.granx-company-points div:hover::after {
  transform: scale(1.7);
}

/* ================================
   VÍDEO
================================ */

.granx-video-block {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 34px;
  padding: 22px;
  border-radius: 38px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(37,99,235,.14);
  box-shadow: 0 30px 90px rgba(15,23,42,.10);
  backdrop-filter: blur(16px);
  margin-bottom: 120px;
}

.granx-video-info {
  padding: 38px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(56,189,248,.35), transparent 35%),
    linear-gradient(135deg, #151820, #2563eb);
}

.granx-video-frame {
  position: relative;
  min-height: 430px;
  border-radius: 30px;
  overflow: hidden;
  background: #151820;
  cursor: pointer;
}

.granx-video-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
  transition: .6s ease;
}

.granx-video-frame:hover img {
  transform: scale(1.08);
  opacity: .9;
}

.granx-play-btn {
  position: absolute;
  z-index: 4;
  inset: 0;
  margin: auto;
  width: 105px;
  height: 105px;
  border: 0;
  border-radius: 50%;
  color: #2563eb;
  background: #fff;
  font-size: 34px;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 22px 60px rgba(0,0,0,.24);
  transition: .35s ease;
}

.granx-play-btn:hover {
  transform: scale(1.08);
}

.granx-play-btn span {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.58);
  animation: granxPulse 1.5s infinite;
}

.granx-video-icons {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
}

.granx-video-icons i {
  position: absolute;
  color: rgba(255,255,255,.65);
  font-size: 30px;
  animation: granxVideoIcon 5s ease-in-out infinite;
}

.granx-video-icons i:nth-child(1) {
  left: 40px;
  top: 40px;
}

.granx-video-icons i:nth-child(2) {
  right: 50px;
  top: 70px;
  animation-delay: 1s;
}

.granx-video-icons i:nth-child(3) {
  left: 55px;
  bottom: 55px;
  animation-delay: 2s;
}

/* ================================
   NOSSAS SOLUÇÕES COMO BOTÕES
================================ */

.granx-special-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 45px;
}

.granx-special-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 365px;
  padding: 30px;
  border-radius: 34px;
  background: #fff;
  border: 1px solid rgba(37,99,235,.14);
  box-shadow: 0 22px 70px rgba(15,23,42,.08);
  color: #151820;
  text-decoration: none;
  overflow: hidden;
  transition: .35s ease;
  cursor: pointer;
}

.granx-special-card::before {
  content: "";
  position: absolute;
  top: 26px;
  right: 26px;
  width: 42px;
  height: 42px;
  border-top: 2px solid rgba(37,99,235,.25);
  border-right: 2px solid rgba(37,99,235,.25);
  border-radius: 0 18px 0 0;
}

.granx-special-card::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -65px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: #dbeafe;
  transition: .35s ease;
}

.granx-special-card > i {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: #fff;
  font-size: 30px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  box-shadow: 0 18px 40px rgba(37,99,235,.26);
  animation: granxIconFloat 4s ease-in-out infinite;
}

.granx-special-card h3 {
  position: relative;
  z-index: 2;
  margin: 26px 0 13px;
  font-size: 23px;
}

.granx-special-card p {
  position: relative;
  z-index: 2;
  color: #52627e;
  line-height: 1.7;
}

.granx-access-text {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding-top: 22px;
  color: #2563eb;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: .35s ease;
}

.granx-access-text i {
  font-size: 12px;
  transition: .35s ease;
}

.granx-special-card:hover {
  transform: translateY(-12px);
  border-color: rgba(37,99,235,.42);
  box-shadow: 0 30px 90px rgba(37,99,235,.16);
}

.granx-special-card:hover::after {
  transform: scale(1.7);
}

.granx-special-card:hover .granx-access-text {
  transform: translateX(6px);
}

.granx-special-card:hover .granx-access-text i {
  transform: translateX(5px);
}

/* BOTÃO VER TODOS OS SERVIÇOS */

.granx-services-action {
  display: flex;
  justify-content: center;
  margin: 0 0 120px;
}

.granx-all-services-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  box-shadow: 0 18px 45px rgba(37,99,235,.28);
  transition: .35s ease;
}

.granx-all-services-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
  transition: .6s ease;
}

.granx-all-services-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 65px rgba(37,99,235,.36);
}

.granx-all-services-btn:hover::before {
  transform: translateX(120%);
}

/* ================================
   GRÁFICO REAL
================================ */

.granx-growth {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 42px;
  align-items: center;
  margin-bottom: 120px;
}

.granx-growth-text {
  padding: 42px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(56,189,248,.35), transparent 35%),
    linear-gradient(135deg, #151820, #2563eb);
}

.granx-chart-card {
  padding: 30px;
  border-radius: 38px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(37,99,235,.14);
  box-shadow: 0 30px 90px rgba(15,23,42,.10);
  backdrop-filter: blur(16px);
}

.granx-chart-head {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.granx-chart-head span {
  color: #64748b;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.granx-chart-head h3 {
  margin: 6px 0 0;
  color: #151820;
  font-size: 30px;
}

.granx-chart-head strong {
  color: #2563eb;
  font-size: 54px;
  line-height: 1;
}

.granx-real-chart {
  width: 100%;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(rgba(37,99,235,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.05) 1px, transparent 1px),
    #f8fbff;
  background-size: 100% 25%, 25% 100%;
}

.granx-real-chart svg {
  width: 100%;
  height: 410px;
  display: block;
}

.granx-axis {
  stroke: rgba(15, 23, 42, .25);
  stroke-width: 2;
}

.granx-grid-line {
  stroke: rgba(37, 99, 235, .14);
  stroke-width: 1.5;
  stroke-dasharray: 8 8;
}

.granx-y-label,
.granx-x-label {
  fill: #64748b;
  font-size: 16px;
  font-weight: 800;
}

.granx-value-label {
  fill: #2563eb;
  font-size: 17px;
  font-weight: 900;
}

.granx-value-label.big {
  font-size: 21px;
}

.granx-area {
  fill: url(#granxChartArea);
  opacity: 0;
  transition: .8s ease;
}

.granx-line-path {
  fill: none;
  stroke: url(#granxChartLine);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 950;
  stroke-dashoffset: 950;
  transition: 1.8s ease;
}

.granx-dot {
  fill: #fff;
  stroke: #2563eb;
  stroke-width: 6;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}

.granx-chart-card.chart-active .granx-area {
  opacity: 1;
}

.granx-chart-card.chart-active .granx-line-path {
  stroke-dashoffset: 0;
}

.granx-chart-card.chart-active .granx-dot {
  animation: granxDot .45s ease forwards;
}

.granx-chart-card.chart-active .dot-1 { animation-delay: .3s; }
.granx-chart-card.chart-active .dot-2 { animation-delay: .7s; }
.granx-chart-card.chart-active .dot-3 { animation-delay: 1.1s; }
.granx-chart-card.chart-active .dot-4 { animation-delay: 1.5s; }

/* ================================
   GALERIA
================================ */

.granx-gallery {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  grid-auto-rows: 260px;
  gap: 20px;
}

.granx-photo {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: #151820;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 24px 75px rgba(15,23,42,.14);
  transition: .35s ease;
}

.granx-photo-big {
  grid-row: span 2;
}

.granx-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .86;
  transition: .7s ease;
}

.granx-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.9), rgba(15,23,42,.28), transparent);
}

.granx-photo div {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 26px;
}

.granx-photo h3 {
  margin: 0 0 6px;
  font-size: 26px;
}

.granx-photo p {
  margin: 0;
  color: rgba(255,255,255,.78);
}

.granx-photo:hover {
  transform: translateY(-10px);
}

.granx-photo:hover img {
  transform: scale(1.12);
  opacity: 1;
}

/* MODAL DO VÍDEO */

.granx-video-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  place-items: center;
  padding: 30px;
  background: rgba(3, 7, 18, .88);
  backdrop-filter: blur(14px);
}

.granx-video-modal.active {
  display: grid;
}

.granx-video-modal iframe {
  width: min(1100px, 100%);
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  box-shadow: 0 30px 100px rgba(0,0,0,.5);
}

.granx-close-video {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #151820;
  font-size: 22px;
  cursor: pointer;
}

/* REVEAL */

.granx-reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: .85s cubic-bezier(.2,.8,.2,1);
}

.granx-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ANIMAÇÕES */

@keyframes granxLight {
  50% {
    transform: translate(35px, 45px);
  }
}

@keyframes granxBannerZoom {
  from {
    transform: scale(1.02);
  }

  to {
    transform: scale(1.12);
  }
}

@keyframes granxFadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes granxSoftPulse {
  50% {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(37, 99, 235, .38);
  }
}

@keyframes granxImageFloat {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-18px) rotate(1deg);
  }
}

@keyframes granxShapeFloat {
  0%, 100% {
    transform: rotate(4deg) translateY(0);
  }

  50% {
    transform: rotate(1deg) translateY(18px);
  }
}

@keyframes granxTagFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes granxIconFloat {
  50% {
    transform: translateY(-8px);
  }
}

@keyframes granxPulse {
  to {
    transform: scale(1.35);
    opacity: 0;
  }
}

@keyframes granxVideoIcon {
  50% {
    transform: translateY(-18px) rotate(8deg);
  }
}

@keyframes granxDot {
  from {
    opacity: 0;
    transform: scale(.4);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* RESPONSIVO */

@media (max-width: 1080px) {
  .granx-company-free,
  .granx-video-block,
  .granx-growth {
    grid-template-columns: 1fr;
  }

  .granx-company-points,
  .granx-special-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .granx-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .granx-photo-big {
    grid-row: span 1;
  }

  .granx-company-image-wrap {
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 680px) {
  .granx-hero-banner {
    min-height: 720px;
  }

  .granx-hero-content {
    width: min(100% - 32px, 1280px);
    min-height: 720px;
    padding: 110px 0 120px;
  }

  .granx-hero-content h1 {
    font-size: clamp(36px, 12vw, 54px);
    letter-spacing: -1.4px;
  }

  .granx-hero-content p {
    font-size: 16px;
  }

  .granx-actions {
    flex-direction: column;
  }

  .granx-btn {
    width: 100%;
  }

  .granx-container {
    padding: 0 16px;
  }

  .granx-company-free {
    margin: 90px 0;
    gap: 40px;
  }

  .granx-company-image-wrap {
    min-height: 500px;
  }

  .granx-company-image {
    inset: 70px 0 70px 0;
    width: 100%;
    height: calc(100% - 140px);
  }

  .granx-floating-tag {
    min-width: 160px;
    padding: 14px 16px;
  }

  .tag-one {
    left: 10px;
    top: 10px;
  }

  .tag-two {
    right: 10px;
    top: 230px;
  }

  .tag-three {
    left: 10px;
    bottom: 10px;
  }

  .granx-company-points,
  .granx-special-list,
  .granx-gallery {
    grid-template-columns: 1fr;
  }

  .granx-special-card {
    min-height: 330px;
  }

  .granx-video-info,
  .granx-growth-text {
    padding: 28px 22px;
  }

  .granx-video-frame {
    min-height: 280px;
  }

  .granx-chart-head {
    flex-direction: column;
  }

  .granx-real-chart svg {
    height: 330px;
  }

  .granx-y-label,
  .granx-x-label {
    font-size: 13px;
  }

  .granx-value-label {
    font-size: 13px;
  }

  .granx-value-label.big {
    font-size: 15px;
  }

  .granx-services-action {
    margin-bottom: 90px;
  }

  .granx-all-services-btn {
    width: 100%;
  }
}

/* ===== DIVISOR ANIMADO ENTRE SEÇÕES - TELA TODA ===== */
/* ===== DIVISOR ANIMADO ENTRE SEÇÕES - TELA TODA ===== */
/* ===== DIVISOR ANIMADO ENTRE SEÇÕES - TELA TODA ===== */
.scroll-divider {
  position: relative;

  width: 100vw;
  max-width: 100vw;
  height: 110px;

  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    90deg,
    rgba(0, 63, 243, 0.14),
    rgba(255, 255, 255, 0.96),
    rgba(0, 132, 255, 0.14)
  );

  border-top: 1px solid rgba(0, 63, 243, 0.08);
  border-bottom: 1px solid rgba(0, 63, 243, 0.08);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    filter 0.8s ease,
    height 0.8s ease;
}

/* ===== ESTADO ESCONDIDO ===== */
.scroll-divider.is-hidden {
  opacity: 0;
  transform: translateY(-18px) scale(0.96);
  filter: blur(10px);
  height: 0;
  pointer-events: none;
  border: none;
}

/* ===== ESTADO VISÍVEL ===== */
.scroll-divider.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* ===== EFEITOS DE FUNDO ===== */
.scroll-divider::before,
.scroll-divider::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(75px);
  opacity: 0.45;
  animation: dividerFloat 6s ease-in-out infinite alternate;
}

.scroll-divider::before {
  left: -180px;
  background: rgba(0, 63, 243, 0.35);
}

.scroll-divider::after {
  right: -180px;
  background: rgba(0, 132, 255, 0.35);
  animation-delay: 1.5s;
}

/* ===== LINHA CENTRAL ===== */
.scroll-divider-line {
  position: absolute;
  left: 0;
  width: 100vw;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 63, 243, 0.25),
    rgba(0, 132, 255, 0.85),
    rgba(0, 63, 243, 0.25),
    transparent
  );
  animation: linePulse 2.5s ease-in-out infinite;
}

/* ===== BOTÃO CENTRAL ===== */
.scroll-mouse {
  position: relative;
  z-index: 3;
  width: 30px;
  height: 48px;
  border-radius: 999px;
  border: 2px solid rgba(0, 63, 243, 0.4);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);

  box-shadow:
    0 0 0 8px rgba(0, 63, 243, 0.06),
    0 12px 32px rgba(0, 63, 243, 0.22);

  cursor: pointer;
  animation: mouseBounce 1.8s ease-in-out infinite;
}

.scroll-mouse span {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #003ff3;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: dotScroll 1.4s ease-in-out infinite;
}

.scroll-divider-glow {
  position: absolute;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(0, 63, 243, 0.22), transparent 70%);
  border-radius: 50%;
  animation: glowPulse 2s ease-in-out infinite;
}

/* ===== ANIMAÇÕES ===== */
@keyframes dividerFloat {
  from {
    transform: translateY(-12px) scale(1);
  }
  to {
    transform: translateY(12px) scale(1.05);
  }
}

@keyframes linePulse {
  0%, 100% {
    opacity: 0.35;
    transform: scaleX(0.85);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes mouseBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

@keyframes dotScroll {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 18px);
  }
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.35;
    transform: scale(0.9);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.15);
  }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .scroll-divider {
    height: 85px;
  }

  .scroll-mouse {
    width: 24px;
    height: 38px;
  }

  .scroll-divider::before,
  .scroll-divider::after {
    width: 360px;
    height: 360px;
  }

  .scroll-divider-glow {
    width: 95px;
    height: 95px;
  }
}



/* RODAPE */
/* ==========================================
   FOOTER GRANSAFETY PREMIUM
========================================== */


.gs-footer{

position:relative;
overflow:hidden;

background:

linear-gradient(
135deg,
#f8fbff 0%,
#ffffff 45%,
#edf4ff 100%
);


padding:85px 6% 30px;

color:#042444;

font-family:inherit;


}



/* FUNDO */


.gs-footer-glow{

position:absolute;


width:520px;

height:520px;


right:-200px;

top:-200px;



background:

radial-gradient(
circle,
rgba(12,90,219,.18),
transparent 70%
);



animation:

footerGlow 8s infinite alternate;


pointer-events:none;

}




.gs-footer-grid{


position:absolute;

inset:0;


background-image:

linear-gradient(
rgba(12,90,219,.03) 1px,
transparent 1px
),

linear-gradient(
90deg,
rgba(12,90,219,.03) 1px,
transparent 1px
);


background-size:

60px 60px;


opacity:.4;

}






@keyframes footerGlow{


from{

transform:translateY(0);

}


to{

transform:translateY(40px);

}


}









/* CTA */


.gs-footer-cta{


position:relative;

z-index:2;


max-width:1200px;


margin:0 auto 65px;


padding:38px 45px;


border-radius:28px;



background:


linear-gradient(
135deg,
#042444,
#063b78
);



display:flex;


justify-content:space-between;


align-items:center;


gap:30px;


box-shadow:


0 25px 60px rgba(4,36,68,.18);



overflow:hidden;


}



.gs-footer-cta::after{


content:"";


position:absolute;


width:280px;

height:280px;


right:-120px;

bottom:-140px;


background:

rgba(255,255,255,.08);



border-radius:50%;


}






.gs-footer-cta-text span{


color:#8bb8ff;


font-size:13px;


font-weight:800;


letter-spacing:1.5px;



}




.gs-footer-cta-text h2{


margin:12px 0;


font-size:32px;


color:white;


font-weight:850;


}



.gs-footer-cta-text p{


color:#d5e5ff;


max-width:560px;


line-height:1.7;


}





.gs-footer-main-btn{


position:relative;

z-index:2;


background:white;


color:#042444;


padding:16px 28px;


border-radius:50px;


text-decoration:none;


font-weight:800;


display:flex;


align-items:center;


gap:12px;


transition:.35s;


}




.gs-footer-main-btn:hover{


background:#0c5adb;


color:white;


transform:translateY(-5px);


}









/* CONTAINER */


.gs-footer-container{


position:relative;

z-index:2;


max-width:1200px;


margin:auto;


display:grid;


grid-template-columns:

1.5fr 1fr 1fr 1fr;


gap:45px;



}








/* LOGO */


.gs-footer-brand img{


width:220px;


margin-bottom:22px;


transition:.4s;


}




.gs-footer-brand img:hover{


transform:

scale(1.07);


filter:

drop-shadow(
0 10px 25px
rgba(12,90,219,.35)
);



}




.gs-footer-brand p{


color:#60738b;


line-height:1.8;


font-size:15px;


}





/* SOCIAL */


.gs-social{


display:flex;


gap:12px;


margin-top:25px;


}



.gs-social a{


width:42px;


height:42px;


background:white;


border-radius:50%;


display:flex;


align-items:center;


justify-content:center;


color:#042444;


text-decoration:none;


box-shadow:

0 10px 25px rgba(4,36,68,.12);


transition:.3s;


}



.gs-social a:hover{


background:#0c5adb;


color:white;


transform:

translateY(-6px);


}








/* COLUNAS */


.gs-footer-column h3{


font-size:18px;


font-weight:800;


margin-bottom:25px;


position:relative;


}



.gs-footer-column h3::after{


content:"";


display:block;


width:40px;


height:3px;


background:#0c5adb;


border-radius:20px;


margin-top:10px;


transition:.3s;


}



.gs-footer-column:hover h3::after{


width:75px;


}




.gs-footer-column a{


display:block;


text-decoration:none;


color:#62748a;


margin-bottom:14px;


font-size:15px;


transition:.3s;


}



.gs-footer-column a:hover{


color:#0c5adb;


transform:translateX(6px);


}





/* GRANHUB */


.gs-highlight{


background:


linear-gradient(
135deg,
#0c5adb,
#087cff
);



color:white!important;


padding:13px 18px;


border-radius:14px;


font-weight:800;


box-shadow:

0 15px 30px rgba(12,90,219,.25);



}

.granhub-btn-acesso{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    padding:14px 20px;
    border-radius:14px;
    background:linear-gradient(135deg,#0c5adb,#0c5adb);
    color:#fff !important;
    font-weight:700;
    text-decoration:none !important;
    font-size:15px;
    box-shadow:0 8px 25px rgba(4,36,68,.25);
    transition:.3s;
}

.granhub-btn-acesso,
.granhub-btn-acesso:visited,
.granhub-btn-acesso:hover,
.granhub-btn-acesso:active{
    color:#fff !important;
}

.granhub-btn-acesso i{
    color:#fff !important;
    font-size:18px;
}

.granhub-btn-acesso:hover{
    transform:translateY(-3px);
    background:linear-gradient(135deg,#0a3d7a,#0f4fa1);
    box-shadow:0 12px 35px rgba(4,36,68,.35);
}










/* LEGAL */


.gs-footer-legal{


position:relative;


z-index:2;


max-width:1200px;


margin:55px auto 0;


padding:25px;


border-radius:18px;


background:white;


box-shadow:


0 15px 40px rgba(4,36,68,.08);


display:flex;


justify-content:space-between;


align-items:center;


gap:20px;


}



.legal-title{


font-weight:800;


color:#042444;


}



.legal-links{


display:flex;


gap:15px;


flex-wrap:wrap;


}



.legal-links a{


padding:10px 18px;


background:#f1f6ff;


border-radius:20px;


text-decoration:none;


color:#53657b;


font-size:14px;


transition:.3s;


}



.legal-links a:hover{


background:#0c5adb;


color:white;


}








/* FINAL */


.gs-footer-bottom{


position:relative;


z-index:2;


max-width:1200px;


margin:30px auto 0;


padding-top:25px;


border-top:

1px solid rgba(4,36,68,.12);



display:flex;


justify-content:space-between;


color:#68798d;


font-size:14px;


}



.gs-footer-bottom strong{


color:#042444;


}









/* REVEAL */


.reveal{


opacity:0;


transform:

translateY(35px);


transition:

.8s ease;


}



.reveal.active{


opacity:1;


transform:

translateY(0);


}








/* RESPONSIVO */


@media(max-width:950px){


.gs-footer-container{


grid-template-columns:repeat(2,1fr);


}



.gs-footer-cta{


flex-direction:column;


text-align:center;


}



.gs-footer-legal{


flex-direction:column;


}


}



@media(max-width:600px){


.gs-footer{


padding:60px 5% 25px;


}



.gs-footer-container{


grid-template-columns:1fr;


}



.gs-footer-bottom{


flex-direction:column;


text-align:center;


}



.gs-footer-cta{


padding:30px;


}



.gs-footer-cta-text h2{


font-size:24px;


}


}

/* AREA DO DESENVOLVIDO POR */
.gs-footer-bottom{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  position:relative;
  z-index:2;
}

.dev-info-btn{
  background:none;
  border:0;
  padding:0;
  margin:0;
  cursor:pointer;
  color:#9ca3af;
  font-size:14px;
  font-family:inherit;
  transition:.3s ease;
}

.dev-info-btn strong{
  color:#0046a8;
}

.dev-info-btn:hover{
  color:#fff;
  transform:translateY(-2px);
}

/* FUNDO DESFOCADO NEUTRO */
.dev-panel-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  z-index:999998;
  transition:.35s ease;
}

.dev-panel-overlay.active{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

/* PAINEL LATERAL */
.dev-panel{
  position:fixed;
  top:0;
  right:0;
  width:440px;
  max-width:100%;
  height:100dvh;
  background:#fff;
  z-index:999999;
  transform:translateX(105%);
  transition:.55s cubic-bezier(.2,.9,.2,1);
  box-shadow:-30px 0 80px rgba(0,0,0,.28);
  overflow-y:auto;
  overflow-x:hidden;
}

.dev-panel.active{
  transform:translateX(0);
}

.dev-panel-close{
  position:absolute;
  top:18px;
  right:18px;
  width:42px;
  height:42px;
  border:0;
  border-radius:50%;
  background:#fff;
  color:#042444;
  cursor:pointer;
  z-index:20;
  font-size:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.16);
  transition:.3s ease;
}

.dev-panel-close:hover{
  transform:rotate(90deg) scale(1.05);
}

/* TOPO VISUAL */
.dev-panel-hero{
  position:relative;
  min-height:260px;
  padding:32px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  overflow:hidden;
}

.dev-panel-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(4,36,68,.52),rgba(4,36,68,.92)),
    url("Img/dev-background.jpg");
  background-size:cover;
  background-position:center;
  transform:scale(1.08);
  animation:devPanelBg 12s ease-in-out infinite alternate;
}

@keyframes devPanelBg{
  from{
    transform:scale(1.08) translateX(0);
  }
  to{
    transform:scale(1.16) translateX(-14px);
  }
}

.dev-panel-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,.16),transparent);
  transform:translateX(-120%);
  animation:devPanelShine 5s infinite;
}

@keyframes devPanelShine{
  to{
    transform:translateX(130%);
  }
}

.dev-panel-logo{
  position:relative;
  z-index:2;
  width:220px;
  max-width:85%;
  filter:drop-shadow(0 14px 28px rgba(0,0,0,.45));
  animation:devLogoIn .8s ease both;
}

@keyframes devLogoIn{
  from{
    opacity:0;
    transform:translateY(-12px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.dev-panel-icon{
  position:relative;
  z-index:2;
  width:92px;
  height:92px;
  border-radius:26px;
  background:rgba(255,255,255,.14);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:38px;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.18);
  animation:devFloatIcon 3s ease-in-out infinite;
}

.dev-panel-icon::before{
  content:"";
  position:absolute;
  inset:-8px;
  border-radius:32px;
  border:1px dashed rgba(255,255,255,.36);
  animation:devRotate 9s linear infinite;
}

@keyframes devFloatIcon{
  50%{
    transform:translateY(-8px);
  }
}

@keyframes devRotate{
  to{
    transform:rotate(360deg);
  }
}

/* CONTEÚDO */
.dev-panel-content{
  padding:28px;
}

.dev-panel-tag{
  display:inline-block;
  background:#eef6ff;
  color:#0b4d91;
  padding:8px 14px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.7px;
}

.dev-panel-content h2{
  margin:16px 0 10px;
  color:#042444;
  font-size:30px;
  line-height:1.08;
}

.dev-panel-content p{
  margin:0 0 15px;
  color:#5f6f86;
  font-size:14px;
  line-height:1.6;
}

.dev-panel-status{
  margin-bottom:14px;
  padding:12px 14px;
  border-radius:15px;
  background:#ecfdf3;
  color:#178348;
  font-size:13px;
  font-weight:800;
  display:flex;
  align-items:center;
  gap:9px;
}

.dev-panel-status span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#22c55e;
  box-shadow:0 0 0 7px rgba(34,197,94,.14);
  animation:devStatusPulse 1.4s infinite;
}

@keyframes devStatusPulse{
  50%{
    opacity:.45;
  }
}

.dev-panel-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.dev-panel-grid div{
  background:#f8fafc;
  border:1px solid #e7edf5;
  border-radius:16px;
  padding:13px;
  transition:.3s ease;
}

.dev-panel-grid div:hover{
  transform:translateY(-4px);
  background:#eef6ff;
}

.dev-panel-grid small{
  display:block;
  color:#718096;
  font-size:11px;
  margin-bottom:4px;
}

.dev-panel-grid strong{
  color:#042444;
  font-size:14px;
}

.dev-panel-note{
  margin-top:14px;
  padding:14px;
  border-radius:16px;
  background:linear-gradient(135deg,#eef6ff,#fff);
  border:1px solid #dceafe;
}

.dev-panel-note strong{
  display:block;
  color:#042444;
  font-size:13px;
  margin-bottom:4px;
}

.dev-panel-note span{
  color:#64748b;
  font-size:12px;
}

.dev-panel-site{
  position:relative;
  margin-top:16px;
  height:46px;
  border-radius:999px;
  background:#042444;
  color:#fff !important;
  text-decoration:none !important;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-size:13px;
  font-weight:800;
  overflow:hidden;
  transition:.3s ease;
}

.dev-panel-site::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.28),transparent);
  transform:translateX(-100%);
  animation:devSiteMove 2.8s infinite;
}

@keyframes devSiteMove{
  to{
    transform:translateX(100%);
  }
}

.dev-panel-site span,
.dev-panel-site i{
  position:relative;
  z-index:2;
}

.dev-panel-site:hover{
  transform:translateY(-4px);
  background:#0b4d91;
}

.dev-panel-actions{
  display:flex;
  gap:10px;
  margin-top:12px;
}

.dev-panel-actions a{
  flex:1;
  height:42px;
  border-radius:14px;
  background:#f1f5f9;
  color:#042444 !important;
  text-decoration:none !important;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:13px;
  font-weight:800;
  transition:.3s ease;
}

.dev-panel-actions a:hover{
  transform:translateY(-4px);
  background:#e5efff;
}

/* MOBILE */
@media(max-width:600px){
  .dev-panel{
    width:100%;
    height:100dvh;
    border-radius:0;
  }

  .dev-panel-hero{
    min-height:220px;
    padding:24px;
  }

  .dev-panel-logo{
    width:185px;
  }

  .dev-panel-icon{
    width:78px;
    height:78px;
    font-size:32px;
    border-radius:22px;
  }

  .dev-panel-content{
    padding:22px;
  }

  .dev-panel-content h2{
    font-size:25px;
  }

  .dev-panel-grid{
    grid-template-columns:1fr;
  }

  .dev-panel-actions{
    flex-direction:column;
  }
}

@media(max-width:380px){
  .dev-panel-hero{
    min-height:190px;
    padding:20px;
  }

  .dev-panel-logo{
    width:155px;
  }

  .dev-panel-content{
    padding:18px;
  }

  .dev-panel-content h2{
    font-size:22px;
  }
}

/* FIM RODAPE */